home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
-
- :begin
- if exist c:\dos\more.com goto memory
- if not exist c:\windows\command\more.com goto memor1
- goto memchk
-
- :memory
- if exist c:\dos\mem.exe goto memchk
- if exist c:\windows\command\mem.exe goto memchk
- goto sorry
-
- :memchk
- mem /C |more
- pause
- goto end
-
- :memor1
- mem /c
- pause
- goto end
-
- :sorry
- echo.
- echo.
- echo Sorry, but we can't find the neccessary memory checking program
- echo that normally ships with Microsoft DOS or MS Windows products.
- echo.
- echo Please consult your DOS manual or a "smart friend" if you can't
- echo figure this problem out.
- echo.
- echo.
- pause
- goto end
-
- :end